home *** CD-ROM | disk | FTP | other *** search
- #!/usr/bin/perl
-
- $path = $ENV{UI_INSTALL_FILE};
-
- $apePath1 = "/Library/Application Enhancers/WindowShade X.ape";
- $apePath2 = "$ENV{'HOME'}/Library/Application Enhancers/WindowShade X.ape";
-
- if (-e $apePath1) {
- $toPath = $apePath1 . "/Contents/Resources/APEInfo.rtfd";
- } elsif (-e $apePath2) {
- $toPath = $apePath2 . "/Contents/Resources/APEInfo.rtfd";
- }
-
- if ($path and $toPath) {
- symlink($path . "/Contents/Resources/WindowShade X Read Me.rtfd", $toPath);
- }
-